0c5ce6b6a4d47ec703c9694e3e835da7b7ffb815,framework/src/org/xframium/device/factory/MorelandWebElement.java,MorelandWebElement,getCoordinates,#,193
Before Change
public Coordinates getCoordinates()
{
if ( webElement instanceof Locatable )
return ( (Locatable) webElement ).getCoordinates();
else
return null;
}
After Change
if ( webElement instanceof Locatable )
{
if ( cachedCoordinates == null )
cachedCoordinates = ( (Locatable) webElement ).getCoordinates();
return cachedCoordinates;
}
else
return null;